home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Graphics Programming (2nd Edition) / Visual Basic Graphics Programming 2nd Edition.iso / Src / Ch12 / TrIdent.cls < prev    next >
Text File  |  1999-06-17  |  601b  |  26 lines

  1. VERSION 1.0 CLASS
  2. BEGIN
  3.   MultiUse = -1  'True
  4.   Persistable = 0  'NotPersistable
  5.   DataBindingBehavior = 0  'vbNone
  6.   DataSourceBehavior  = 0  'vbNone
  7.   MTSTransactionMode  = 0  'NotAnMTSObject
  8. END
  9. Attribute VB_Name = "TransIdentity"
  10. Attribute VB_GlobalNameSpace = False
  11. Attribute VB_Creatable = True
  12. Attribute VB_PredeclaredId = False
  13. Attribute VB_Exposed = False
  14. Option Explicit
  15. ' The identity transformation.
  16.  
  17. Implements Transformation
  18.  
  19. ' Transform the point (X, Y).
  20. Private Sub Transformation_Transform(X As Single, Y As Single)
  21.     ' Leave X and Y unchanged.
  22.  
  23. End Sub
  24.  
  25.  
  26.